home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / mozilla-firefox / include / dom / nsIDOMSVGAnimatedPoints.h < prev    next >
Encoding:
C/C++ Source or Header  |  2006-05-08  |  3.1 KB  |  104 lines

  1. /*
  2.  * DO NOT EDIT.  THIS FILE IS GENERATED FROM nsIDOMSVGAnimatedPoints.idl
  3.  */
  4.  
  5. #ifndef __gen_nsIDOMSVGAnimatedPoints_h__
  6. #define __gen_nsIDOMSVGAnimatedPoints_h__
  7.  
  8.  
  9. #ifndef __gen_domstubs_h__
  10. #include "domstubs.h"
  11. #endif
  12.  
  13. /* For IDL files that don't want to include root IDL files. */
  14. #ifndef NS_NO_VTABLE
  15. #define NS_NO_VTABLE
  16. #endif
  17. class nsIDOMSVGPointList; /* forward declaration */
  18.  
  19.  
  20. /* starting interface:    nsIDOMSVGAnimatedPoints */
  21. #define NS_IDOMSVGANIMATEDPOINTS_IID_STR "ebf334b3-86ef-4bf3-8a92-d775c72defa4"
  22.  
  23. #define NS_IDOMSVGANIMATEDPOINTS_IID \
  24.   {0xebf334b3, 0x86ef, 0x4bf3, \
  25.     { 0x8a, 0x92, 0xd7, 0x75, 0xc7, 0x2d, 0xef, 0xa4 }}
  26.  
  27. class NS_NO_VTABLE nsIDOMSVGAnimatedPoints : public nsISupports {
  28.  public: 
  29.  
  30.   NS_DEFINE_STATIC_IID_ACCESSOR(NS_IDOMSVGANIMATEDPOINTS_IID)
  31.  
  32.   /* readonly attribute nsIDOMSVGPointList points; */
  33.   NS_IMETHOD GetPoints(nsIDOMSVGPointList * *aPoints) = 0;
  34.  
  35.   /* readonly attribute nsIDOMSVGPointList animatedPoints; */
  36.   NS_IMETHOD GetAnimatedPoints(nsIDOMSVGPointList * *aAnimatedPoints) = 0;
  37.  
  38. };
  39.  
  40. /* Use this macro when declaring classes that implement this interface. */
  41. #define NS_DECL_NSIDOMSVGANIMATEDPOINTS \
  42.   NS_IMETHOD GetPoints(nsIDOMSVGPointList * *aPoints); \
  43.   NS_IMETHOD GetAnimatedPoints(nsIDOMSVGPointList * *aAnimatedPoints); 
  44.  
  45. /* Use this macro to declare functions that forward the behavior of this interface to another object. */
  46. #define NS_FORWARD_NSIDOMSVGANIMATEDPOINTS(_to) \
  47.   NS_IMETHOD GetPoints(nsIDOMSVGPointList * *aPoints) { return _to GetPoints(aPoints); } \
  48.   NS_IMETHOD GetAnimatedPoints(nsIDOMSVGPointList * *aAnimatedPoints) { return _to GetAnimatedPoints(aAnimatedPoints); } 
  49.  
  50. /* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
  51. #define NS_FORWARD_SAFE_NSIDOMSVGANIMATEDPOINTS(_to) \
  52.   NS_IMETHOD GetPoints(nsIDOMSVGPointList * *aPoints) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetPoints(aPoints); } \
  53.   NS_IMETHOD GetAnimatedPoints(nsIDOMSVGPointList * *aAnimatedPoints) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetAnimatedPoints(aAnimatedPoints); } 
  54.  
  55. #if 0
  56. /* Use the code below as a template for the implementation class for this interface. */
  57.  
  58. /* Header file */
  59. class nsDOMSVGAnimatedPoints : public nsIDOMSVGAnimatedPoints
  60. {
  61. public:
  62.   NS_DECL_ISUPPORTS
  63.   NS_DECL_NSIDOMSVGANIMATEDPOINTS
  64.  
  65.   nsDOMSVGAnimatedPoints();
  66.  
  67. private:
  68.   ~nsDOMSVGAnimatedPoints();
  69.  
  70. protected:
  71.   /* additional members */
  72. };
  73.  
  74. /* Implementation file */
  75. NS_IMPL_ISUPPORTS1(nsDOMSVGAnimatedPoints, nsIDOMSVGAnimatedPoints)
  76.  
  77. nsDOMSVGAnimatedPoints::nsDOMSVGAnimatedPoints()
  78. {
  79.   /* member initializers and constructor code */
  80. }
  81.  
  82. nsDOMSVGAnimatedPoints::~nsDOMSVGAnimatedPoints()
  83. {
  84.   /* destructor code */
  85. }
  86.  
  87. /* readonly attribute nsIDOMSVGPointList points; */
  88. NS_IMETHODIMP nsDOMSVGAnimatedPoints::GetPoints(nsIDOMSVGPointList * *aPoints)
  89. {
  90.     return NS_ERROR_NOT_IMPLEMENTED;
  91. }
  92.  
  93. /* readonly attribute nsIDOMSVGPointList animatedPoints; */
  94. NS_IMETHODIMP nsDOMSVGAnimatedPoints::GetAnimatedPoints(nsIDOMSVGPointList * *aAnimatedPoints)
  95. {
  96.     return NS_ERROR_NOT_IMPLEMENTED;
  97. }
  98.  
  99. /* End of implementation class template. */
  100. #endif
  101.  
  102.  
  103. #endif /* __gen_nsIDOMSVGAnimatedPoints_h__ */
  104.